Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
darjeeling committed Jul 22, 2024
1 parent e57ca04 commit b4f9f99
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
FROM python:3.7.6
FROM --platform=linux/amd64 python:3.7.17-slim-bullseye

ENV PYTHONUNBUFFERED 1
WORKDIR /config
ADD requirements.txt /config/
RUN apt-get update
RUN apt-get install -y build-essential curl postgresql-server-dev-13
RUN pip install -r requirements.txt
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \
Expand Down

0 comments on commit b4f9f99

Please sign in to comment.