@ -17,7 +17,6 @@ jobs:
key: deps-{{ checksum "requirements/dev.txt"}}-{{ .Environment.CACHE_VERSION }}
paths:
- "venv"
- image: circleci/postgres:9.6.2-alpine
test:
docker:
- image: circleci/python:3.9
@ -0,0 +1,13 @@
FROM python:3.9.1
COPY . /app
WORKDIR /app
ENV FLASK_APP=autoapp.py
RUN pip install -r requirements/dev.txt
EXPOSE 8000
CMD python autoapp.py