bffh/debian/Dockerfile

12 lines
386 B
Docker
Raw Normal View History

#see:
# - https://hub.docker.com/_/ubuntu
# - https://github.com/docker-library/official-images#architectures-other-than-amd64
FROM docker.io/ubuntu:noble
#COPY requirements.txt requirements.txt
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt install -y devscripts build-essential debhelper alien htop vim libpcsclite-dev
#COPY . .
#VOLUME /app/config
#CMD [ "python3", "main.py"]