Skip to content

Commit e09918a

Browse files
authored
Fixing a common problem with setup in our environment
1 parent 9d56f06 commit e09918a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
FROM python:3.10-slim
33

44
# Install system dependencies
5-
RUN apt-get update && apt-get install -y \
5+
RUN apt-get update
6+
RUN apt-get install -y \
67
gcc \
78
g++ \
89
curl \
@@ -35,4 +36,4 @@ WORKDIR /app
3536
EXPOSE 3000
3637

3738
# Start the server
38-
CMD ["python", "main.py"]
39+
CMD ["python", "main.py"]

0 commit comments

Comments
 (0)