13 lines
No EOL
241 B
Docker
Executable file
13 lines
No EOL
241 B
Docker
Executable file
# Base
|
|
## For AMD64 Servers:
|
|
FROM ark.sudovanilla.org/korbs/node:alpine AS based
|
|
## For ARM64 Servers:
|
|
## FROM ark.sudovanilla.org/korbs/bun:arm64 as based
|
|
|
|
# Copy Files
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
# Run
|
|
EXPOSE 2014
|
|
CMD npm run build && npm start |