-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8350974
commit 6ad9f16
Showing
6 changed files
with
24 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,18 +5,20 @@ FROM python:3.12-slim-bullseye | |
LABEL org.opencontainers.image.authors="nilknarf <[email protected]>" | ||
LABEL org.opencontainers.image.source="https://github.com/DEAD10C5/1337-Noms-The-Hacker-Cookbook" | ||
LABEL org.opencontainers.image.description="Ye Olde Hacker Cookbook" | ||
LABEL org.opencontainers.image.licenses="CCC 1.0" | ||
LABEL org.opencontainers.image.licenses="CC BY-ND 4.0 DEED" | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
ADD . /app | ||
WORKDIR /app | ||
WORKDIR /app/.admin | ||
|
||
RUN \ | ||
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367;\ | ||
apt update; \ | ||
apt install -y apt-utils;\ | ||
apt -y autoremove;\ | ||
apt install -y make git | ||
apt-get update; \ | ||
apt-get install -y gnupg2 apt-utils;\ | ||
apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 93C4A3FD7BB9C367;\ | ||
apt-get -y autoremove;\ | ||
apt-get install -y make git | ||
|
||
# Python3 setup | ||
RUN pip3 install -rrequirements.txt | ||
RUN ls;\ | ||
pip install --upgrade pip;\ | ||
pip3 install -rsrc/requirements.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.