12 lines
193 B
Plaintext
12 lines
193 B
Plaintext
FROM fedora:latest
|
|
|
|
# Set labels
|
|
LABEL maintainer="Lukas Greve <lukas@phyllo.me>"
|
|
LABEL DISTTAG=f44simple-container
|
|
|
|
# Set working directory
|
|
WORKDIR /build
|
|
|
|
# Default command
|
|
CMD ["/bin/bash"]
|