mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2024-12-22 05:12:57 -05:00
Add registries
This commit is contained in:
parent
af3f74f4b0
commit
cf2fdd7507
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue