X-Git-Url: http://git.purplebirdman.com/web-gallery.git/blobdiff_plain/77fb873efda5c6a60d8d05efad1e349db57044a9..d731a2bad30aaec2e1f1d63e2bb57062e1ccd503:/Dockerfile diff --git a/Dockerfile b/Dockerfile index 0ef69aa..c3e0f83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,8 +10,9 @@ RUN apk update && \ apk add --no-cache gcc musl-dev linux-headers libpq-dev python3-dev WORKDIR /app -COPY ./app /app COPY ./requirements.txt /app RUN pip install -r requirements.txt +COPY ./app /app + CMD ["flask", "run"]