From 67e4882bb372bc45d178e3eacc409cdbf60f1344 Mon Sep 17 00:00:00 2001 From: Jake Gold <52801504+Jacob2161@users.noreply.github.com> Date: Mon, 20 Mar 2023 14:41:15 -0700 Subject: bskyweb additions (#296) Add some minor bskyweb improvements, Mailmodo endpoint, Dockerfile for bskyweb, container image push --- Dockerfile | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 000000000..95f0ec02e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,75 @@ +FROM golang:1.20-bullseye AS build-env + +WORKDIR /usr/src/social-app + +ENV DEBIAN_FRONTEND=noninteractive + +# Node +ENV NODE_VERSION=18 +ENV NVM_DIR=/usr/share/nvm + +# Go +ENV GODEBUG="netdns=go" +ENV GOOS="linux" +ENV GOARCH="amd64" +ENV CGO_ENABLED=1 + +COPY . . + +# +# Generate the Javascript webpack. +# +RUN mkdir --parents $NVM_DIR && \ + wget \ + --output-document=/tmp/nvm-install.sh \ + https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh && \ + bash /tmp/nvm-install.sh + +RUN \. "$NVM_DIR/nvm.sh" && \ + nvm install $NODE_VERSION && \ + nvm use $NODE_VERSION && \ + npm install --global yarn && \ + yarn && \ + yarn build-web + +# DEBUG +RUN find ./bskyweb/static && find ./web-build/static + +# Copy the bundle js files. +RUN cp --verbose ./web-build/static/js/*.* ./bskyweb/static/js/ + +# +# Generate the bksyweb Go binary. +# +RUN cd bskyweb/ && \ + go mod download && \ + go mod verify + +RUN cd bskyweb/ && \ + go build \ + -v \ + -trimpath \ + -tags timetzdata \ + -o /bskyweb \ + ./cmd/bskyweb + +FROM debian:bullseye-slim + +ENV GODEBUG=netdns=go +ENV TZ=Etc/UTC +ENV DEBIAN_FRONTEND=noninteractive + +RUN apt-get update && apt-get install --yes \ + dumb-init \ + ca-certificates + +ENTRYPOINT ["dumb-init", "--"] + +WORKDIR /bskyweb +COPY --from=build-env /bskyweb /usr/bin/bskyweb + +CMD ["/usr/bin/bskyweb"] + +LABEL org.opencontainers.image.source=https://github.com/bluesky-social/social-app +LABEL org.opencontainers.image.description="bsky.app Web App" +LABEL org.opencontainers.image.licenses=MIT -- cgit 1.4.1