Spaces:
Runtime error
Runtime error
Commit ·
7a90765
1
Parent(s): a78f9db
Create Dockerfile
Browse files- Dockerfile +16 -0
Dockerfile
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM lsiobase/rdesktop-web:alpine
|
| 2 |
+
|
| 3 |
+
RUN \
|
| 4 |
+
echo "**** install packages ****" && \
|
| 5 |
+
apk add --no-cache \
|
| 6 |
+
firefox-esr && \
|
| 7 |
+
echo "**** cleanup ****" && \
|
| 8 |
+
rm -rf \
|
| 9 |
+
/tmp/*
|
| 10 |
+
|
| 11 |
+
# add local files
|
| 12 |
+
COPY /root /
|
| 13 |
+
|
| 14 |
+
# ports and volumes
|
| 15 |
+
EXPOSE 3000
|
| 16 |
+
VOLUME /config
|