mirror of
https://github.com/hcengineering/platform.git
synced 2025-03-16 11:15:47 +00:00
10 lines
169 B
Docker
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" ]
|