Initial commit.
This commit is contained in:
11
front/Dockerfile
Normal file
11
front/Dockerfile
Normal file
@@ -0,0 +1,11 @@
|
||||
FROM node:23-alpine as builder
|
||||
|
||||
WORKDIR /tmp/app
|
||||
COPY . /tmp/app
|
||||
|
||||
RUN yarn install --frozen-lockfile
|
||||
RUN yarn build
|
||||
|
||||
FROM nginx:stable
|
||||
|
||||
COPY --from=builder /tmp/app/dist /www/data
|
Reference in New Issue
Block a user