mirror of
https://gitlab.com/fabinfra/fabaccess/bffh.git
synced 2025-03-12 16:11:43 +01:00
12 lines
386 B
Docker
12 lines
386 B
Docker
|
#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"]
|