Skip to content

Commit 3ac6c6c

Browse files
authored
Merge pull request #175 from gitnnolabs/fix_build
Atualiza a versão do python para 3.6.
2 parents 2bbd2cf + 70d0676 commit 3ac6c6c

2 files changed

Lines changed: 10 additions & 4 deletions

File tree

Dockerfile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
FROM python:3.5.2
1+
FROM python:3.6
22
ENV PYTHONUNBUFFERED 1
33

4-
RUN apt-get update && apt-get install -y libmemcached-dev
4+
5+
RUN apt-get update
6+
RUN apt-key update
7+
RUN apt-get install --yes libmemcached-dev
58

69
COPY . /app
710
COPY production.ini-TEMPLATE /app/config.ini

Dockerfile-dev

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
FROM python:3.5.2
1+
FROM python:3.6
22
ENV PYTHONUNBUFFERED 1
33

4-
RUN apt-get update && apt-get install -y libmemcached-dev
4+
RUN apt-get update
5+
RUN apt-key update
6+
RUN apt-get install --yes libmemcached-dev
7+
58

69
COPY . /app
710
COPY development.ini-TEMPLATE /app/config.ini

0 commit comments

Comments
 (0)