We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4306511 + 56d29f5 commit dcd9951Copy full SHA for dcd9951
1 file changed
Dockerfile
@@ -1,6 +1,7 @@
1
# Use the official image as a parent image
2
FROM node:12
3
4
+ENV CONTAINERHOME /home/node
5
RUN apt update; apt install git; apt clean;
6
7
RUN npm install -g purescript@0.13.6 --unsafe-perm;
@@ -11,5 +12,6 @@ USER node
11
12
# Inform Docker that the container is listening on the specified port at runtime.
13
EXPOSE 1234
14
15
+WORKDIR $CONTAINERHOME
16
# Run the specified command within the container.
17
CMD [ "bash", "" ]
0 commit comments