Skip to content

Commit aa8b9ec

Browse files
committed
add task and wasmedge
1 parent 728f824 commit aa8b9ec

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM fedora:latest
1+
FROM docker.io/fedora:latest
22

33
ARG VERSION
44
ARG USER_NAME=dev
@@ -12,7 +12,8 @@ RUN passwd -l root && \
1212
chmod 755 /home/$USER_NAME
1313

1414
RUN dnf update -y && \
15-
dnf install -y curl nano wget net-tools openssl git nodejs golang python3 && \
15+
dnf install -y curl nano wget net-tools openssl git go-task nodejs golang python3 wasmedge && \
16+
ln -s /usr/bin/go-task /usr/bin/task && \
1617
rpm --restore shadow-utils && \
1718
dnf clean all && \
1819
rm -rf /tmp/* /var/tmp/* /var/cache /var/log/dnf*

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# set defaults for env vars
44
LOCALE="${LOCALE:-en}"
55
PORT=8080
6-
EXTENSIONS="golang.go|ms-python.python|ms-python.debugpy|eamodio.gitlens|humao.rest-client|esbenp.prettier-vscode|dbaeumer.vscode-eslint|ecmel.vscode-html-css|pkief.material-icon-theme|dreamcatcher45.podmanager|${EXTENSIONS}"
6+
EXTENSIONS="golang.go|ms-python.python|ms-python.debugpy|eamodio.gitlens|humao.rest-client|esbenp.prettier-vscode|dbaeumer.vscode-eslint|ecmel.vscode-html-css|pkief.material-icon-theme|task.vscode-task|${EXTENSIONS}"
77
EXTENSIONS=${EXTENSIONS%|}
88
export PASSWORD="${PASSWORD:-changeit}"
99

0 commit comments

Comments
 (0)