Skip to content

Commit

Permalink
Update Dockerfile and .gitpod.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AngelMunoz committed Nov 18, 2023
1 parent 90a3438 commit e75de90
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 13 deletions.
10 changes: 9 additions & 1 deletion .gitpod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
FROM mcr.microsoft.com/dotnet/sdk:7.0
FROM gitpod/workspace-full:2023-11-04-12-07-48

RUN sudo apt-get update && sudo apt-get install apt-transport-https
RUN declare repo_version=$(if command -v lsb_release &> /dev/null; then lsb_release -r -s; else grep -oP '(?<=^VERSION_ID=).+' /etc/os-release | tr -d '"'; fi)
RUN wget https://packages.microsoft.com/config/ubuntu/$repo_version/packages-microsoft-prod.deb -O packages-microsoft-prod.deb
RUN sudo dpkg -i packages-microsoft-prod.deb
RUN rm packages-microsoft-prod.deb

RUN sudo apt-get update && sudo apt-get install dotnet-sdk-8.0
8 changes: 1 addition & 7 deletions .gitpod.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,6 @@
image:
file: .gitpod.Dockerfile

github:
prebuilds:
master: true
pullRequests: true
pullRequestsFromForks: true
addBadge: true

tasks:
- name: Restore
init: dotnet tool restore && dotnet paket restore && dotnet build
Expand All @@ -16,3 +9,4 @@ vscode:
extensions:
- muhammad-sammy.csharp
- ionide.ionide-fsharp
- eamodio.gitlens
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
# Perla Dev Server [![wakatime](https://wakatime.com/badge/user/4537232c-b581-465b-9604-b10a55ffa7b4/project/d46e17c5-054e-4249-a2ab-4294d0e5e026.svg)](https://wakatime.com/badge/user/4537232c-b581-465b-9604-b10a55ffa7b4/project/d46e17c5-054e-4249-a2ab-4294d0e5e026)

[![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/AngelMunoz/Perla)
[![Open in GitHub Codespaces](https://github.com/codespaces/badge.svg)](https://codespaces.new/AngelMunoz/Perla/tree/dev?quickstart=1) [![Open in Gitpod](https://gitpod.io/button/open-in-gitpod.svg)](https://gitpod.io/#https://github.com/AngelMunoz/Perla)

Perla is a cross-platform single executable binary CLI Tool for a Development Server of Single Page Applications (like vite/webpack but no node required!).

If that sounds like something nice, [Check The docs!](https://perla-docs.web.app/)

## Status

The current **_v1.0.0_** development is taking place in the `dev` branch, please check it out, also the releases tab contains the most recen betas to try out!

```
Description:
The Perla Dev Server!
Expand Down

0 comments on commit e75de90

Please sign in to comment.