mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-27 02:42:11 +00:00
10 lines
168 B
Docker
10 lines
168 B
Docker
FROM hardcoreeng/front-base:v20250310
|
|
WORKDIR /app
|
|
|
|
COPY bundle/bundle.js ./
|
|
COPY bundle/bundle.js.map ./
|
|
COPY dist/ ./dist/
|
|
|
|
EXPOSE 8080
|
|
CMD [ "node", "./bundle.js" ]
|