Skip to content
This repository was archived by the owner on Apr 28, 2020. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .sail/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
FROM codercom/ubuntu-dev-go:latest
SHELL ["/bin/bash", "-c"]
RUN sudo apt-get update && \
sudo apt-get install -y htop
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash && \
. ~/.nvm/nvm.sh \
&& nvm install node

RUN sudo apt-get install -y htop
LABEL project_root "~/go/src/go.coder.com"

# Modules break much of Go's tooling.
ENV GO111MODULE=off

# Install the latest version of Hugo.
RUN wget -O /tmp/hugo.deb https://github.com/gohugoio/hugo/releases/download/v0.55.4/hugo_extended_0.55.4_Linux-64bit.deb && \
sudo dpkg -i /tmp/hugo.deb && \
rm -f /tmp/hugo.deb
sudo dpkg -i /tmp/hugo.deb && \
rm -f /tmp/hugo.deb

RUN installext peterjausovec.vscode-docker