add openvscode server
Some checks failed
Docker Build / Build SeaCogs (push) Successful in 9s
Docker Build / Build PyZipline (push) Successful in 7s
Docker Build / Build OpenVSCodeServer (push) Failing after 9s

This commit is contained in:
Seaswimmer 2024-01-27 09:11:40 -05:00
parent d06b939ea9
commit f82904efac
Signed by: cswimr
GPG key ID: 1EBC234EEDA901AE
2 changed files with 34 additions and 0 deletions

View file

@ -49,3 +49,25 @@ jobs:
file: ./PyZipline/Dockerfile
push: true
tags: coastalcommits.com/seaswimmerthefsh/actionscontainers-pyzipline:latest
Build OpenVSCodeServer:
runs-on: docker
container: catthehacker/ubuntu:act-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
with:
token: ${{ secrets.COASTALCOMMITSTOKEN }}
- name: Login to CoastalCommits
uses: actions/docker-login@v3
with:
registry: coastalcommits.com
username: SeaswimmerTheFsh
password: ${{ secrets.COASTALCOMMITSTOKEN }}
- name: Build and push Docker image
uses: actions/docker-build-push@v5
with:
context: .
file: ./OpenVSCodeServer/Dockerfile
push: true
tags: coastalcommits.com/seaswimmerthefsh/openvscode-server:latest

View file

@ -0,0 +1,12 @@
FROM gitpod/openvscode-server:latest
# Install APT packages
RUN apt-get update
RUN apt-get install -y \
python3.11 \
python3.11-dev \
python3.11-venv \
python3-pip
# Install Poetry
RUN python3.11 -m pip install poetry