feat: bunch of raw data

This commit is contained in:
kellervater
2025-04-10 19:29:36 +02:00
parent 04f76ace15
commit 7b4590c2de
31 changed files with 18 additions and 5 deletions

View File

@@ -1,9 +1,12 @@
FROM mcr.microsoft.com/vscode/devcontainers/base:ubuntu
# Install Ruby and dependencies
RUN apt-get update && \
apt-get install -y ruby-full build-essential zlib1g-dev nodejs && \
gem install bundler jekyll
RUN apt-get update -y && apt-get upgrade -y && \
apt-get install ruby-full build-essential zlib1g-dev -y
RUN echo '# Install Ruby Gems to ~/gems' >> ~/.bashrc && \
echo 'export GEM_HOME="$HOME/gems"' >> ~/.bashrc && \
echo 'export PATH="$HOME/gems/bin:$PATH"' >> ~/.bashrc
RUN gem install jekyll bundler
# Clean up
RUN apt-get clean && rm -rf /var/lib/apt/lists/*

View File

@@ -4,11 +4,11 @@
"dockerfile": "Dockerfile"
},
"forwardPorts": [4000],
"postCreateCommand": "bundle install || true",
"customizations": {
"vscode": {
"extensions": [
"rebornix.Ruby"
"Shopify.ruby-lsp",
"ms-azuretools.vscode-docker"
]
}
}