Skip to content

Commit 39a3bdf

Browse files
Update Dockerfile
1 parent 7279540 commit 39a3bdf

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

Dockerfile

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
FROM ubuntu
2-
COPY . /tmp
32

4-
WORKDIR /tmp
5-
RUN apt update && apt install wget -y
6-
RUN ./StudioInstaller.sh
3+
ENV workspace=/tmp
4+
COPY . ${workspace}
5+
6+
WORKDIR ${workspace}
7+
RUN apt update && apt install wget -y;chmod +x ${workspace}/StudioInstaller.sh
8+
RUN ${workspace}/StudioInstaller.sh

0 commit comments

Comments
 (0)