Skip to content
This repository was archived by the owner on Jan 2, 2023. It is now read-only.

Commit 1d03950

Browse files
author
Unknown
committedAug 4, 2020
Docker file update
1 parent 258c745 commit 1d03950

File tree

1 file changed

+1
-8
lines changed

1 file changed

+1
-8
lines changed
 

‎Dockerfile

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,10 @@ MAINTAINER Egor Kostan
44
ENV PYTHONUNBUFFERED 1
55

66
COPY ./requirements.txt /requirements.txt
7-
RUN apk add --update --no-cache postgresql-client
8-
RUN apk add --update --no-cache --virtual .tmp-build-deps \
9-
gcc libc-dev linux-headers postgresql-dev
7+
108
RUN pip install -r /requirements.txt
119
RUN apk del .tmp-build-deps
1210

13-
# RUN apk update && \
14-
# apk upgrade && \
15-
# apk add --no-cache git && \
16-
# apk add --no-cache mercurial
17-
1811
RUN mkdir /app
1912
WORKDIR /app
2013
COPY ./app /app

0 commit comments

Comments
 (0)