Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
update gitpod config and update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Sirherobrine23 committed Nov 16, 2022
1 parent 7ad6d93 commit f9c2dd8
Show file tree
Hide file tree
Showing 6 changed files with 494 additions and 3,638 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/sirherobrine23/initjs:latest
# Install dependecies to Bedrock server
RUN (echo "deb http://security.ubuntu.com/ubuntu focal-security main" | tee /etc/apt/sources.list.d/focal-security.list && apt update && apt install -y libssl1.1) || exit 0
RUN (apt update && apt install -y libssl1.1 || (echo "deb http://security.ubuntu.com/ubuntu focal-security main" | tee /etc/apt/sources.list.d/focal-security.list && apt update && apt install -y libssl1.1)) || echo exit $?

# Add non root user and Install oh my zsh
ARG USERNAME="devcontainer"
Expand Down
23 changes: 17 additions & 6 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
image:
file: .devcontainer/Dockerfile
tasks:
- init: npm install
ports:
- port: 3000
visibility: public
onOpen: ignore
- port: 19132
visibility: public
vscode:
extensions:
- formulahendry.code-runner
- github.vscode-pull-request-github
- redhat.vscode-yaml
- eamodio.gitlens
- wix.vscode-import-cost
- eg2.vscode-npm-script
- christian-kohler.npm-intellisense
- christian-kohler.path-intellisense
- aaron-bond.better-comments
- vscode-icons-team.vscode-icons
- cschleiden.vscode-github-actions
- oderwat.indent-rainbow
- ms-azuretools.vscode-docker

0 comments on commit f9c2dd8

Please sign in to comment.