10 lines
140 B
Docker
10 lines
140 B
Docker
|
FROM fedora:33
|
||
|
MAINTAINER luki42
|
||
|
|
||
|
COPY ./build.sh /tmp/
|
||
|
|
||
|
RUN bash /tmp/build.sh
|
||
|
|
||
|
# Expose /home as workin dir
|
||
|
WORKDIR /home
|
||
|
VOLUME ["/home"]
|