File tree Expand file tree Collapse file tree 5 files changed +14
-0
lines changed Expand file tree Collapse file tree 5 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 11#! /bin/bash
2+ . bin/activate
23python3 hello.py
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ RUN chmod +x /usr/start/startup.sh && \
66 apt-get update && \
77 apt-get install -y \
88 dumb-init \
9+ wget \
910 openssh-client \
1011 openssh-server && \
1112 apt-get clean && \
Original file line number Diff line number Diff line change @@ -34,3 +34,4 @@ svelte=SvelteKit
3434ubuntu=ubuntu
3535cpp=C++
3636c=c
37+ quarkus=quarkus
Original file line number Diff line number Diff line change @@ -34,3 +34,4 @@ svelte=5173
3434ubuntu=8080
3535cpp=8080
3636c=8080
37+ quarkus=8080
Original file line number Diff line number Diff line change 33# Define the password file location
44PASSWORD_FILE=" /usr/start/user_password.txt"
55
6+ if [ ! -z " ${RUNTIME_INITIAL} " ]; then
7+ if [ -d " /home/devbox/.ssh" ]; then
8+ cd /home/devbox/.ssh
9+ rm -rf ./*
10+ fi
11+ if [ -f " /usr/start/user_password.txt" ]; then
12+ rm /usr/start/user_password.txt
13+ fi
14+ fi
15+
616# Check if the password file exists
717if [ ! -f " ${PASSWORD_FILE} " ]; then
818 # If the password file doesn't exist, check if USER_PASSWORD is already set
You can’t perform that action at this time.
0 commit comments