Posts with the "Gitpod" tag
Showing a total of 1 article.
Create the necessary [Gitpod](https://www.gitpod.io/) files on the root of your repository. ```bash $ touch .gitpod.Dockerfile $ touch .gitpod.yml ``` ```dockerfile filename=.gitpod.Dockerfile FROM gitpod/workspace-full USER root RUN apt-get update && apt-get install -yq hugo ``` ```yaml filen...