[Komodo] hqadmin: Commit Dockerfile: update ./Dockerfile
This commit is contained in:
parent
1fd0d44074
commit
9392c78bf6
1 changed files with 16 additions and 3 deletions
19
Dockerfile
19
Dockerfile
|
@ -1,3 +1,16 @@
|
|||
## Add your dockerfile here
|
||||
FROM debian:stable-slim
|
||||
RUN echo 'Hello Komodo'
|
||||
FROM ubuntu:25.04
|
||||
|
||||
LABEL maintainer="Dylan Derr"
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends tftpd-hpa && \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
RUN mkdir -p /srv/tftp && \
|
||||
chmod -R 777 /srv/tftp
|
||||
|
||||
EXPOSE 69/udp
|
||||
|
||||
CMD ["/usr/sbin/in.tftpd", "--ipv4", "--foreground", "--verbose", "--address", "0.0.0.0:69", "--secure", "--create", "-vvv", "/srv/tftp"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue