1
Fork 0
This repository has been archived on 2025-04-18. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
Frontend-Project/Dockerfile

13 lines
212 B
Text
Raw Normal View History

2024-07-07 20:04:25 -04:00
FROM ark.sudovanilla.org/korbs/nodejs:alpine AS runtime
WORKDIR /app
2024-04-14 23:56:13 -04:00
2024-07-07 20:04:25 -04:00
COPY . .
2024-04-14 23:56:13 -04:00
2024-07-07 20:04:25 -04:00
RUN npm install
2024-04-14 23:56:13 -04:00
RUN npm run translate
2024-07-07 20:04:25 -04:00
RUN npm run build
2024-04-14 23:56:13 -04:00
2024-07-07 20:04:25 -04:00
ENV HOST=0.0.0.0
ENV PORT=1930
EXPOSE 1930
CMD node ./dist/server/entry.mjs