mirror of
https://codeberg.org/SafeTwitch/safetwitch.git
synced 2025-01-03 11:20:07 -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
|
# 2) nginx stage to serve frontend assets
|
||||||
|
|
||||||
# Name the node stage "builder"
|
# Name the node stage "builder"
|
||||||
FROM node:16 AS builder
|
FROM docker.io/node:16 AS builder
|
||||||
# Set working directory
|
# Set working directory
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
|
@ -16,7 +16,7 @@ COPY . .
|
||||||
RUN npm i && npm run build
|
RUN npm i && npm run build
|
||||||
|
|
||||||
# nginx state for serving content
|
# nginx state for serving content
|
||||||
FROM nginx:alpine
|
FROM docker.io/nginx:alpine
|
||||||
COPY ./nginx.conf /etc/nginx/nginx.conf
|
COPY ./nginx.conf /etc/nginx/nginx.conf
|
||||||
# Set working directory to nginx asset directory
|
# Set working directory to nginx asset directory
|
||||||
RUN mkdir /app
|
RUN mkdir /app
|
||||||
|
|
Loading…
Reference in a new issue