1
Fork 0
This repository has been archived on 2024-12-04. You can view files and clone it, but cannot push or open issues or pull requests.
MinPluto-Frontend/Dockerfile
2024-07-12 01:08:17 -04:00

13 lines
No EOL
205 B
Docker

FROM codeberg.org/korbs/nodejs:alpine AS runtime
WORKDIR /app
COPY . .
RUN npm install
RUN npm run translate
RUN npm run build
ENV HOST=0.0.0.0
ENV PORT=1930
EXPOSE 1930
CMD node ./dist/server/entry.mjs