Added docker basics

This commit is contained in:
Nicolai Ort 2021-08-12 18:38:05 +02:00
parent d85823455f
commit 44c77a8aad
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
3 changed files with 66 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM registry.odit.services/hub/library/node:16-alpine3.13
WORKDIR /app
COPY package.json *.config.cjs *.config.js ./
RUN yarn
COPY src ./src
COPY static ./static
RUN yarn build
# final image
FROM registry.odit.services/hub/fholzer/nginx-brotli:v1.19.1
COPY --from=0 /app/build /usr/share/nginx/html
COPY ./nginx.conf /etc/nginx/nginx.conf

6
docker-compose.yml Normal file
View File

@ -0,0 +1,6 @@
version: '3'
services:
http:
build: .
ports:
- 4269:80

49
nginx.conf Normal file
View File

@ -0,0 +1,49 @@
events {
}
http {
include mime.types;
sendfile on;
server {
error_page 404 /index.html;
root /usr/share/nginx/html;
location ~ /index\.html$ {
internal;
add_header Cache-Control 'no-store';
}
location ~* \.(png|jpg|jpeg|webp|gif|ico|woff|otf|ttf|eot|svg|txt|pdf|docx?|xlsx?)$ {
access_log off;
expires 1y;
}
location / {
try_files $uri $uri/ /index.html;
}
# --- GZIP
gzip on;
gzip_disable "msie6";
gzip_vary on;
gzip_proxied any;
gzip_comp_level 6;
gzip_buffers 16 8k;
gzip_http_version 1.1;
gzip_types application/javascript
application/rss+xml
application/vnd.ms-fontobject
application/x-font
application/x-font-opentype
application/x-font-otf
application/x-font-truetype
application/x-font-ttf
application/x-javascript
application/xhtml+xml
application/xml
font/opentype
font/otf
font/ttf
image/svg+xml
image/x-icon
text/css
text/javascript
text/plain
text/xml;
}
}