mirror of
https://github.com/Hessenuk/DiscordTickets.git
synced 2024-12-23 08:13:09 +02:00
refactor(docker): Rewrite Dockerfile
- Image comes in at around 203 MB now
This commit is contained in:
parent
89bfa5b0f8
commit
6acd842c62
23
Dockerfile
23
Dockerfile
@ -1,9 +1,20 @@
|
|||||||
FROM node:16
|
# Use the alpine image of node 16
|
||||||
|
FROM node:16-alpine
|
||||||
|
|
||||||
WORKDIR /usr/src/app
|
# Create a dir for the app and make it owned by a non-root user (node)
|
||||||
COPY package*.json ./
|
RUN mkdir /tickets && \
|
||||||
|
chown -R 1000:1000 /tickets
|
||||||
|
WORKDIR /tickets
|
||||||
|
|
||||||
RUN npm i --production
|
# Change user to node
|
||||||
|
USER node
|
||||||
|
|
||||||
COPY . .
|
# Install packages
|
||||||
CMD ["npm", "start"]
|
COPY --chown=1000:1000 package.json pnpm-lock.yaml ./
|
||||||
|
RUN npx pnpm install --prod --frozen-lockfile
|
||||||
|
|
||||||
|
# Copy src folder
|
||||||
|
COPY src ./src
|
||||||
|
|
||||||
|
# Set the command
|
||||||
|
CMD ["node", "src/"]
|
||||||
|
Loading…
Reference in New Issue
Block a user