Skip to content

Instantly share code, notes, and snippets.

View 5hay's full-sized avatar
:octocat:

Shayan 5hay

:octocat:
View GitHub Profile
@5hay
5hay / Shiori Bookmark Manager - Dockerfile
Last active June 8, 2020 06:59
Shiori Bookmark Manager Raspberry Pi Dockerfile
FROM arm32v7/golang:1.10-stretch as builder
RUN apt-get update \
&& apt-get install -y git dumb-init ca-certificates
WORKDIR /go
COPY . .
RUN go get -d -v github.com/RadhiFadlillah/shiori
RUN go build -v -x -o /go/src/github.com/RadhiFadlillah/shiori/shiori /go/src/github.com/RadhiFadlillah/shiori/main.go