Skip to content

Commit 9161841

Browse files
committed
fix: correct file paths in Dockerfile for startup script and project directory
Signed-off-by: Yun Pan <[email protected]>
1 parent 22e7d38 commit 9161841

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

OS/debian-ssh/12.6/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
FROM debian:12.6-slim
22

3-
COPY ./script/startup.sh /usr/start/startup.sh
3+
COPY /script/startup.sh /usr/start/startup.sh
44

55
RUN chmod +x /usr/start/startup.sh && \
66
apt-get update && \
@@ -41,7 +41,7 @@ RUN chmod +x /usr/start/startup.sh && \
4141
chmod -R 770 /home/devbox/.ssh
4242

4343
USER devbox
44-
COPY ./OS/debian-ssh/project /home/devbox/project
44+
COPY /OS/debian-ssh/project /home/devbox/project
4545
RUN sudo chown -R devbox:devbox /home/devbox/project && \
4646
sudo chmod -R 777 /home/devbox/project
4747

0 commit comments

Comments
 (0)