butterflyvu/Dockerfile

13 lines
241 B
Text
Raw Normal View History

# Base
## For AMD64 Servers:
2024-12-01 00:24:26 -05:00
FROM ark.sudovanilla.org/korbs/node:alpine AS based
## For ARM64 Servers:
## FROM ark.sudovanilla.org/korbs/bun:arm64 as based
2024-06-05 19:48:11 -05:00
# Copy Files
WORKDIR /app
2024-06-05 19:48:11 -05:00
COPY . .
# Run
2024-11-12 17:03:52 -05:00
EXPOSE 2014
2024-12-01 00:24:26 -05:00
CMD npm run build && npm start