10 lines
169 B
Docker
10 lines
169 B
Docker
FROM python:3.10-alpine
|
|
WORKDIR /code
|
|
|
|
COPY requirements.txt requirements.txt
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8642
|
|
CMD ["python", "application.py"] |