-
-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
- Loading branch information
There are no files selected for viewing
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,19 @@ | ||
FROM python:3.9 | ||
#FROM python:3.8-slim-buster | ||
|
||
WORKDIR /app | ||
|
||
WORKDIR /nebula | ||
COPY . . | ||
|
||
RUN apt-get update && apt-get upgrade -y | ||
RUN apt install python3-dev -y | ||
RUN apt install docker.io -y | ||
RUN pip install --upgrade pip | ||
RUN pip3 install -r requirements.txt | ||
RUN apt update && apt install awscli -y | ||
RUN apt-get update; apt-get install curl -y | ||
RUN curl "https://s3.amazonaws.com/session-manager-downloads/plugin/latest/ubuntu_64bit/session-manager-plugin.deb" -o "session-manager-plugin.deb" | ||
RUN dpkg -i session-manager-plugin.deb | ||
RUN service docker start | ||
RUN ls /nebula | ||
|
||
ENTRYPOINT [ "python3"] | ||
ENTRYPOINT python3.9 teamserver.py -c teamserver.conf |