mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-22 13:22:58 -05:00
Docker support
This commit is contained in:
parent
73ac63e91c
commit
bf544c8e9a
2 changed files with 24 additions and 0 deletions
1
.dockerignore
Normal file
1
.dockerignore
Normal file
|
@ -0,0 +1 @@
|
||||||
|
node_modules
|
23
Dockerfile
Normal file
23
Dockerfile
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# Multi-stage
|
||||||
|
# 1) Node image for building frontend assets
|
||||||
|
# 2) nginx stage to serve frontend assets
|
||||||
|
|
||||||
|
# Name the node stage "builder"
|
||||||
|
FROM node:16 AS builder
|
||||||
|
# Set working directory
|
||||||
|
WORKDIR /app
|
||||||
|
# Copy all files from current directory to working dir in image
|
||||||
|
COPY . .
|
||||||
|
# install node modules and build assets
|
||||||
|
RUN npm i && npm run build
|
||||||
|
|
||||||
|
# nginx state for serving content
|
||||||
|
FROM nginx:alpine
|
||||||
|
# Set working directory to nginx asset directory
|
||||||
|
WORKDIR /usr/share/nginx/html
|
||||||
|
# Remove default nginx static assets
|
||||||
|
RUN rm -rf ./*
|
||||||
|
# Copy static assets from builder stage
|
||||||
|
COPY --from=builder /app/dist .
|
||||||
|
# Containers run nginx with global directives and daemon off
|
||||||
|
ENTRYPOINT ["nginx", "-g", "daemon off;"]
|
Loading…
Reference in a new issue