1
0
Fork 0
This repository has been archived on 2024-12-03. 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.
poke-on-astro-experiment/Dockerfile

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=4321
EXPOSE 4321
CMD node ./dist/server/entry.mjs