File size: 154 Bytes
03f6091
 
 
 
 
 
1
2
3
4
5
6
7
FROM --platform=linux/amd64 python:3.9-slim
WORKDIR /workspace
#COPY requirements.txt ./
RUN apt update && apt install gcc
COPY . /workspace
CMD ["bash"]