er/Dockerfile
Louis Hollingworth 429504787a
Add Discordx init
Signed-off-by: Louis Hollingworth <louis@hollingworth.ch>
2023-05-02 19:59:36 +01:00

37 lines
629 B
Docker

## build runner
FROM node:lts-alpine as build-runner
# Set temp directory
WORKDIR /tmp/app
# Move package.json
COPY package.json .
# Install dependencies
RUN npm install
# Move source files
COPY src ./src
COPY tsconfig.json .
# Build project
RUN npm run build
## production runner
FROM node:lts-alpine as prod-runner
# Set work directory
WORKDIR /app
# Copy package.json from build-runner
COPY --from=build-runner /tmp/app/package.json /app/package.json
# Install dependencies
RUN npm install --omit=dev
# Move build files
COPY --from=build-runner /tmp/app/build /app/build
# Start bot
CMD [ "npm", "run", "start" ]