13 lines
154 B
Docker
13 lines
154 B
Docker
FROM python
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
|
|
RUN apk install sqlite3
|
|
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY /src .
|
|
|
|
CMD [ "python", "app.py" ]
|