Skip to content
Snippets Groups Projects
Commit 0e25f542 authored by Mohamed AZIKIOU's avatar Mohamed AZIKIOU Committed by Mario HOTAJ
Browse files

feat: merged recorder in the extension

parent bb4c883d
No related branches found
No related tags found
No related merge requests found
...@@ -130,7 +130,7 @@ export class MissionDevContainer { ...@@ -130,7 +130,7 @@ export class MissionDevContainer {
(() => { (() => {
const devcontainer: Partial<DockerfileSpecific & Base & VSCodespecific & LifecycleScripts> = { const devcontainer: Partial<DockerfileSpecific & Base & VSCodespecific & LifecycleScripts> = {
name: `deadlock-${this.mission.id}`, name: `deadlock-${this.mission.id}`,
image: `${REGISTRY_MISSION_URL}/${this.mission.id}:${this.mission.version}`, image: `${REGISTRY_MISSION_URL}/${this.mission.id}:${this.mission.version}-test`,
containerEnv: { containerEnv: {
WORKDIR: `${remoteMissionDir}`, WORKDIR: `${remoteMissionDir}`,
}, },
......
...@@ -9,8 +9,19 @@ dockerd-entrypoint.sh "$@" & ...@@ -9,8 +9,19 @@ dockerd-entrypoint.sh "$@" &
# setup ssh key for root user # setup ssh key for root user
# must be installed by the API first within /tmp/.ssh # must be installed by the API first within /tmp/.ssh
mkdir ~/.ssh mkdir ~/.ssh
echo "##################################################"
echo "before /tmp/.ssh/*"
ls /tmp/.ssh/
echo "before ~/.ssh/"
ls ~/.ssh/
cp /tmp/.ssh/* ~/.ssh/ cp /tmp/.ssh/* ~/.ssh/
echo "after /tmp/.ssh/*"
ls /tmp/.ssh/
echo "after ~/.ssh/"
ls ~/.ssh/
# start init mission script if exists # start init mission script if exists
if [ -f "$ON_START_UP_FILE" ]; then if [ -f "$ON_START_UP_FILE" ]; then
echo echo
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment