Skip to content

Commit

Permalink
Update Dockerfile (#307)
Browse files Browse the repository at this point in the history
  • Loading branch information
f-r00t committed Feb 19, 2024
1 parent 43c778d commit 6f53c29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ WORKDIR /usr/src/app
ENV PYTHONUNBUFFERED=1
RUN apk add g++ make
RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python
RUN python3 -m ensurepip
RUN pip3 install --no-cache --upgrade pip setuptools
RUN python3 -m ensurepip --break-system-packages
RUN pip3 install --no-cache --upgrade pip setuptools --break-system-packages

# Install app dependencies
COPY package*.json ./
Expand All @@ -24,4 +24,4 @@ RUN chmod +x start.sh
VOLUME /usr/src/app

EXPOSE 3000
CMD ["start.sh"]
CMD ["start.sh"]

0 comments on commit 6f53c29

Please sign in to comment.