Some checks failed
Test code / Test code (push) Has been cancelled
Build web / Build Web (pull_request) Has been cancelled
Test code / Test code (pull_request) Has been cancelled
Build and push docker image / Build (pull_request) Successful in 1m29s
Build and release APK / Build APK (pull_request) Successful in 8m31s
12 lines
183 B
Docker
12 lines
183 B
Docker
FROM python:3
|
|
|
|
WORKDIR /app
|
|
COPY Pipfile Pipfile.lock .
|
|
|
|
RUN pip install pipenv
|
|
RUN pipenv install --deploy --system
|
|
|
|
COPY . /src
|
|
|
|
CMD ["pipenv", "run", "python", "/app/src/main.py"]
|