12 lines
118 B
Docker
12 lines
118 B
Docker
FROM node:19-alpine
|
|
|
|
ENV STORAGE=/app/storage
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN yarn install
|
|
RUN yarn build
|
|
|
|
CMD yarn start
|