Spaces:
Running
Running
TomatoFull
commited on
Commit
•
663cafa
1
Parent(s):
e9b5f4b
Update Dockerfile
Browse files- Dockerfile +6 -3
Dockerfile
CHANGED
@@ -1,8 +1,11 @@
|
|
1 |
FROM ubuntu:latest
|
2 |
|
3 |
-
RUN apt-
|
4 |
-
|
5 |
-
|
|
|
|
|
|
|
6 |
RUN mkdir -p /app/t
|
7 |
|
8 |
WORKDIR /app
|
|
|
1 |
FROM ubuntu:latest
|
2 |
|
3 |
+
RUN apt-get update && \
|
4 |
+
apt-get install -y software-properties-common && \
|
5 |
+
apt-add-repository ppa:i2p-maintainers/i2p && \
|
6 |
+
apt-get update && \
|
7 |
+
apt-get install -y git golang-go build-essential i2p socat
|
8 |
+
|
9 |
RUN mkdir -p /app/t
|
10 |
|
11 |
WORKDIR /app
|