mirror of
https://ark.sudovanilla.org/Korbs/butterflyvu.git
synced 2024-12-22 15:23:54 +00:00
13 lines
241 B
Docker
Executable file
13 lines
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 |