kopia lustrzana https://github.com/cirospaciari/socketify.py
13 wiersze
167 B
Docker
13 wiersze
167 B
Docker
![]() |
FROM python:3
|
||
|
|
||
|
WORKDIR /usr/src/app
|
||
|
|
||
|
COPY requirements.txt ./
|
||
|
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
EXPOSE 3000
|
||
|
|
||
|
CMD [ "python", "./main.py" ]
|