Files
huly-platform/pods/front/Dockerfile
T
2025-01-14 12:12:15 +07:00

10 lines
169 B
Docker

FROM hardcoreeng/front-base:v20250113a
WORKDIR /app
COPY bundle/bundle.js ./
COPY bundle/bundle.js.map ./
COPY dist/ ./dist/
EXPOSE 8080
CMD [ "node", "./bundle.js" ]