0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch.git synced 2024-12-22 05:12:57 -05:00

Add registries

This commit is contained in:
dragongoose 2023-07-04 20:52:25 -04:00
parent af3f74f4b0
commit cf2fdd7507
No known key found for this signature in database
GPG key ID: 50DB99B921579009

View file

@ -3,7 +3,7 @@
# 2) nginx stage to serve frontend assets
# Name the node stage "builder"
FROM node:16 AS builder
FROM docker.io/node:16 AS builder
# Set working directory
WORKDIR /app
@ -16,7 +16,7 @@ COPY . .
RUN npm i && npm run build
# nginx state for serving content
FROM nginx:alpine
FROM docker.io/nginx:alpine
COPY ./nginx.conf /etc/nginx/nginx.conf
# Set working directory to nginx asset directory
RUN mkdir /app