Add dockerfile

pull/2/head
Nikita Tokarchuk 2 years ago
parent 68430b1932
commit 4ee1a91648
Signed by: mainnika
GPG Key ID: A595FB7E3E56911C
  1. 9
      .dockerignore
  2. 64
      Dockerfile
  3. 45
      nginx/nginx.conf
  4. 1
      nginx/upstream/default.server

@ -0,0 +1,9 @@
*
!nginx
!frontend
!web
!go.mod
!go.sum
!package-lock.json
!package.json
!webpack.config.js

@ -0,0 +1,64 @@
# syntax = docker/dockerfile:1.2
FROM registry.access.redhat.com/ubi8/ubi as go-builder
RUN dnf makecache
WORKDIR /usr/src/nikita-tokarch-uk-frontend
RUN dnf install -yq golang
COPY go.mod .
COPY go.sum .
RUN --mount=type=cache,id=gopath,target=${GOPATH} \
go mod \
download
ARG APP_VERSION=containerized
COPY frontend frontend
RUN --mount=type=cache,id=gopath,target=${GOPATH} \
go build \
-o nikita-tokarch-uk-frontend \
-ldflags "-X main.Version=${APP_VERSION}" \
code.tokarch.uk/mainnika/nikita-tokarch-uk/frontend
FROM registry.access.redhat.com/ubi8/ubi as js-builder
RUN dnf makecache
WORKDIR /usr/src/nikita-tokarch-uk-frontend
RUN dnf install -yq nodejs npm
COPY package-lock.json .
COPY package.json .
RUN npm ci
ARG NODE_ENV=production
COPY webpack.config.js .
COPY web web
RUN npm run build
FROM registry.access.redhat.com/ubi8/ubi as final
RUN dnf makecache
RUN dnf install -yq nginx
RUN mv /usr/share/nginx/html/index.html /usr/share/nginx/html/version.html
COPY nginx /etc/nginx
COPY --from=go-builder \
/usr/src/nikita-tokarch-uk-frontend/nikita-tokarch-uk-frontend \
/usr/local/bin/nikita-tokarch-uk-frontend
COPY --from=js-builder \
/usr/src/nikita-tokarch-uk-frontend/out \
/usr/share/nginx/html
CMD ["/bin/false"]

@ -0,0 +1,45 @@
daemon off;
user nginx;
worker_processes auto;
error_log /var/log/nginx/error.log;
pid /run/nginx.pid;
events {
worker_connections 1024;
}
http {
log_format main '$remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx/access.log main;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
include /etc/nginx/mime.types;
default_type application/octet-stream;
upstream frontend {
include /etc/nginx/upstream/*.server;
}
server {
listen 80 default_server;
listen [::]:80 default_server;
server_name _;
root /usr/share/nginx/html;
location / {
try_files $uri $uri/ @frontend;
}
location @frontend {
proxy_pass http://frontend;
}
}
}

@ -0,0 +1 @@
server 127.0.0.1:8000;
Loading…
Cancel
Save