Initial release
Some checks are pending
Tekton PR Pipeline
CI PR Checks...

This commit is contained in:
2020-06-07 12:50:01 +01:00
parent 313dacf0f9
commit 1baba1d841
4 changed files with 34 additions and 24 deletions

View File

@@ -0,0 +1,17 @@
FROM ubuntu:19.10
RUN apt-get update && apt-get install -y curl
RUN curl -o megacmd-xUbuntu_19.10_amd64.deb https://mega.nz/linux/MEGAsync/xUbuntu_19.10/amd64/megacmd-xUbuntu_19.10_amd64.deb
RUN apt install -y ./megacmd-xUbuntu_19.10_amd64.deb
ADD entrypoint.sh /
RUN adduser --disabled-password --gecos '' mega && adduser mega sudo && echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
USER mega
WORKDIR /home/mega
ENV PASSWORD=
ENV EMAIL=
CMD /entrypoint.sh