Skip to content

Commit 43ef625

Browse files
committed
use recent bepasty version, python3.9 and requirements file
1 parent bd33a1e commit 43ef625

File tree

3 files changed

+49
-8
lines changed

3 files changed

+49
-8
lines changed

Dockerfile

+3-8
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,9 @@
1-
FROM ubuntu:14.04
1+
FROM python:3.9
22
MAINTAINER Arne Schauf
33

44
RUN apt-get update && apt-get upgrade -y && apt-get install -y python-pip python-dev
5-
RUN pip install bepasty uwsgi
6-
7-
# Set the locale
8-
RUN locale-gen en_US.UTF-8
9-
ENV LANG en_US.UTF-8
10-
ENV LANGUAGE en_US:en
11-
ENV LC_ALL en_US.UTF-8
5+
ADD requirements.txt /opt/requirements.txt
6+
RUN pip install -r /opt/requirements.txt
127

138
VOLUME /srv/bepasty
149
ENV BEPASTY_CONFIG /srv/bepasty/bepasty.conf

requirements.in

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
bepasty
2+
uwsgi

requirements.txt

+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
#
2+
# This file is autogenerated by pip-compile
3+
# To update, run:
4+
#
5+
# pip-compile
6+
#
7+
bepasty==1.0.0
8+
# via -r requirements.in
9+
click==8.0.1
10+
# via flask
11+
flask==2.0.1
12+
# via bepasty
13+
itsdangerous==2.0.1
14+
# via flask
15+
jinja2==3.0.1
16+
# via flask
17+
markupsafe==2.0.1
18+
# via jinja2
19+
pygments==2.9.0
20+
# via bepasty
21+
uwsgi==2.0.19.1
22+
# via -r requirements.in
23+
werkzeug==2.0.1
24+
# via flask
25+
xstatic-asciinema-player==2.6.1.1
26+
# via bepasty
27+
xstatic-bootbox==5.5.1.1
28+
# via bepasty
29+
xstatic-bootstrap==4.5.3.1
30+
# via bepasty
31+
xstatic-font-awesome==4.7.0.0
32+
# via bepasty
33+
xstatic-jquery-file-upload==10.31.0.1
34+
# via bepasty
35+
xstatic-jquery-ui==1.12.1.1
36+
# via bepasty
37+
xstatic-jquery==3.5.1.1
38+
# via
39+
# bepasty
40+
# xstatic-jquery-ui
41+
xstatic-pygments==2.9.0.1
42+
# via bepasty
43+
xstatic==1.0.2
44+
# via bepasty

0 commit comments

Comments
 (0)