10 lines
211 B
Docker
10 lines
211 B
Docker
FROM fedora:42
|
|
|
|
RUN dnf -y update && \
|
|
dnf -y install python3 python3-pip sqlite tar zstd git bash && \
|
|
dnf clean all
|
|
|
|
RUN mkdir -p /var/lib/erminig /var/cache/erminig /opt/erminig
|
|
|
|
COPY . /opt/erminig
|
|
|