2024-06-06 16:49:13 -05:00
|
|
|
# Base
|
|
|
|
## For AMD64 Servers:
|
2024-12-01 00:24:26 -05:00
|
|
|
FROM ark.sudovanilla.org/korbs/node:alpine AS based
|
2024-06-06 16:49:13 -05:00
|
|
|
## For ARM64 Servers:
|
|
|
|
## FROM ark.sudovanilla.org/korbs/bun:arm64 as based
|
2024-06-05 19:48:11 -05:00
|
|
|
|
2024-06-06 16:49:13 -05:00
|
|
|
# Copy Files
|
|
|
|
WORKDIR /app
|
2024-06-05 19:48:11 -05:00
|
|
|
COPY . .
|
|
|
|
|
2024-06-06 16:49:13 -05:00
|
|
|
# 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
|