This website works better with JavaScript.
Home
Explore
Help
Sign In
kev
/
Onionr
Watch
1
Star
0
Fork
1
Code
Issues
24
Pull Requests
0
Releases
18
Wiki
Activity
Browse Source
change dockerfile to python image, remove unnecessary apt installs
merge-requests/28/head
Kevin Froman
1 year ago
parent
ef794b18cf
commit
4b6fdbdd0a
1 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-2
Dockerfile
+ 2
- 2
Dockerfile
View File
@ -1,10 +1,10 @@
FROM
ubuntu:disco
FROM
python
#Base settings
ENV
HOME /root
#Install needed packages
RUN
apt update
&&
apt install -y
python3 python3-dev python3-pip
tor locales
nano sqlite3
RUN
apt update
&&
apt install -y tor locales
RUN
sed -i -e
's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/'
/etc/locale.gen
&&
\
locale-gen
Write
Preview
Loading…
Cancel
Save