Skip to content

Commit

Permalink
Merge pull request #175 from gitnnolabs/fix_build
Browse files Browse the repository at this point in the history
Atualiza a versão do python para 3.6.
  • Loading branch information
gitnnolabs authored Dec 12, 2022
2 parents 2bbd2cf + 70d0676 commit 3ac6c6c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
FROM python:3.5.2
FROM python:3.6
ENV PYTHONUNBUFFERED 1

RUN apt-get update && apt-get install -y libmemcached-dev

RUN apt-get update
RUN apt-key update
RUN apt-get install --yes libmemcached-dev

COPY . /app
COPY production.ini-TEMPLATE /app/config.ini
Expand Down
7 changes: 5 additions & 2 deletions Dockerfile-dev
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
FROM python:3.5.2
FROM python:3.6
ENV PYTHONUNBUFFERED 1

RUN apt-get update && apt-get install -y libmemcached-dev
RUN apt-get update
RUN apt-key update
RUN apt-get install --yes libmemcached-dev


COPY . /app
COPY development.ini-TEMPLATE /app/config.ini
Expand Down

0 comments on commit 3ac6c6c

Please sign in to comment.