Skip to content
This repository has been archived by the owner on Jun 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from scientes/patch-5
Browse files Browse the repository at this point in the history
Create DOCKERFILE.development
  • Loading branch information
scientes authored Jan 4, 2021
2 parents 025c87e + 387604b commit 78f37d3
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions DOCKERFILE.development
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
FROM python:3.8-slim as build

WORKDIR .

COPY ./requirements.txt ./requirements.txt

RUN pip install -r requirements.txt

COPY ./app /app
COPY ./crawler /crawler
COPY ./scrapy.cfg /scrapy.cfg

ENTRYPOINT ["uvicorn", "app.main:app"]

0 comments on commit 78f37d3

Please sign in to comment.