Update Dockerfile

This commit is contained in:
Marlon Beijer 2022-08-18 09:41:58 +02:00 committed by GitHub
parent be041006ff
commit cd0992be76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,6 @@ MAINTAINER Marlon Beijer "marlon@amigadev.com"
RUN apt update && apt install -y libtool automake autoconf && apt autoremove -y
RUN echo ${CROSS_PFX}
RUN echo "root:root" | chpasswd
RUN chmod 777 -R /opt/${CROSS_PFX}
RUN ln -s /opt/${CROSS_PFX} /tools
ENV CROSS_ROOT /opt/${CROSS_PFX}
@ -53,4 +52,5 @@ ENV PATH ${PATH}:${CROSS_ROOT}/bin
COPY platforms/${CROSS_PFX}/prep.sh prep.sh
RUN ./prep.sh && rm -rf prep.sh
RUN chmod 777 -R /opt/${CROSS_PFX}
# END COMMON