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