Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ubuntu:18.04
FROM ubuntu:20.04

LABEL name="httpbin"
LABEL version="0.9.2"
Expand All @@ -12,7 +12,7 @@ RUN apt update -y && apt install python3-pip git -y && pip3 install --no-cache-d

ADD Pipfile Pipfile.lock /httpbin/
WORKDIR /httpbin
RUN /bin/bash -c "pip3 install --no-cache-dir -r <(pipenv lock -r)"
RUN /bin/bash -c "pip3 install --no-cache-dir -r <(pipenv requirements)"

ADD . /httpbin
RUN pip3 install --no-cache-dir /httpbin
Expand Down
7 changes: 4 additions & 3 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,19 @@
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"

[packages]
gunicorn = "*"
decorator = "*"
brotlipy = "*"
gevent = "*"
Flask = "*"
Flask = "~=2.2.4"
meinheld = "*"
werkzeug = ">=0.14.1"
werkzeug = "~=2.3"
six = "*"
flasgger = "*"
pyyaml = {git = "https://github.com/yaml/pyyaml.git"}
pyyaml = "~=6.0.1"

[dev-packages]
rope = "*"
Loading