mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-04-02 00:53:27 +02:00
10 lines
186 B
Plaintext
10 lines
186 B
Plaintext
# syntax=docker/dockerfile:1
|
|
FROM node:18
|
|
WORKDIR /app
|
|
COPY . /app/
|
|
RUN yarn install && yarn build
|
|
|
|
FROM nginx:stable-alpine-slim
|
|
EXPOSE 80
|
|
COPY --from=0 /app/dist /usr/share/nginx/html
|