mirror of
https://github.com/sourcegraph/sourcegraph.git
synced 2026-02-06 16:11:57 +00:00
Reintroduces the same changes as https://github.com/sourcegraph/sourcegraph/pull/51104 minus syntax-highlighter which we're unable to compile with the right toolchain at the moment. Tested as a full main-dry-run, as well as running the stack with compose and checking indexing and syntax-highlighting. Executors are also built correctly. ## Test plan CI + manual test via compose. --------- Co-authored-by: Jean-Hadrien Chabran <jh@chabran.fr>
29 lines
1.2 KiB
Docker
29 lines
1.2 KiB
Docker
FROM sourcegraph/alpine-3.14:213466_2023-04-17_5.0-bdda34a71619@sha256:6354a4ff578b685e36c8fbde81f62125ae0011b047fb2cc22d1b0de616b3c59a
|
|
|
|
ARG COMMIT_SHA="unknown"
|
|
ARG DATE="unknown"
|
|
ARG VERSION="unknown"
|
|
|
|
LABEL org.opencontainers.image.revision=${COMMIT_SHA}
|
|
LABEL org.opencontainers.image.created=${DATE}
|
|
LABEL org.opencontainers.image.version=${VERSION}
|
|
LABEL com.sourcegraph.github.url=https://github.com/sourcegraph/sourcegraph/commit/${COMMIT_SHA}
|
|
|
|
RUN apk add --no-cache git
|
|
|
|
# Ensures that a directory with the correct permissions exist in the image. Without this, in Docker Compose
|
|
# deployments the Docker daemon would first create the volume directory and it would be owned by `root` and
|
|
# then a non-root process would be unable to create the `/app/data` because it
|
|
# would be trying to do so in a directory owned by `root` as the user `sourcegraph`. And no, this is not
|
|
# dumb, this is just Docker: https://github.com/docker/compose/issues/3270#issuecomment-363478501.
|
|
USER root
|
|
RUN mkdir -p /app/data && chown -R sourcegraph:sourcegraph /app/data
|
|
USER sourcegraph
|
|
|
|
WORKDIR /app/data/
|
|
VOLUME ["/app/data"]
|
|
ENTRYPOINT ["/sbin/tini", "--", "/usr/local/bin/src-expose"]
|
|
EXPOSE 3434
|
|
|
|
COPY entry.sh src-expose /usr/local/bin/
|