Spaces:
Runtime error
Runtime error
File size: 255 Bytes
7a90765 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
FROM lsiobase/rdesktop-web:alpine
RUN \
echo "**** install packages ****" && \
apk add --no-cache \
firefox-esr && \
echo "**** cleanup ****" && \
rm -rf \
/tmp/*
# add local files
COPY /root /
# ports and volumes
EXPOSE 3000
VOLUME /config |