Skip to content

Commit

Permalink
breaking: migrate to geeksforsocialchange
Browse files Browse the repository at this point in the history
  • Loading branch information
WheresAlice committed Jun 29, 2022
1 parent 9c50185 commit 6a0923c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# syntax=docker/dockerfile:1
FROM golang:1.18-alpine as build
WORKDIR /go/src/github.com/wheresalice/faceprox/
WORKDIR /go/src/github.com/geeksforsocialchange/faceprox/
COPY . .
RUN apk --no-cache add ca-certificates
RUN CGO_ENABLED=0 GOOS=linux go build -o faceprox .

FROM scratch
COPY --from=build /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=build /go/src/github.com/wheresalice/faceprox/faceprox /
COPY --from=build /go/src/github.com/geeksforsocialchange/faceprox/faceprox /
COPY Procfile /
CMD ["/faceprox"]
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ We're not aware of anybody running public instances of Faceprox yet, so you will

## Installation

Download the [latest release](https://github.com/wheresalice/faceprox/releases/latest) for your system and run it. It will listen on port 8000
Download the [latest release](https://github.com/geeksforsocialchange/faceprox/releases/latest) for your system and run it. It will listen on port 8000

Alternatively you can build a docker image by cloning this repository, building an image with `docker build -t faceprox .`, and then run that with `docker run -ti -p 8000 faceprox`

Expand Down

0 comments on commit 6a0923c

Please sign in to comment.