-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (19 loc) · 895 Bytes
/
Copy pathDockerfile
File metadata and controls
21 lines (19 loc) · 895 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Thin wrapper around doccano's official backend image at the version
# this sample tracks. Pinning here (rather than in each lane script
# under keploy/integrations / keploy/enterprise) means a future
# doccano release that changes the bug-triggering shape is a one-line
# retag in this repo, not a hunt across the CI tree.
#
# Upstream tag: doccano/doccano:backend (the rolling backend tag)
# Source pin: doccano/doccano @ v1.8.5
# https://github.com/doccano/doccano/releases/tag/v1.8.5
#
# v1.8.5 was the version exercised on keploy/enterprise pipeline 3556
# (PR #1889) and pipeline 3572 (PR #1964 minimal repro) where the
# bug originally manifested.
FROM doccano/doccano:backend
USER root
COPY doccano-entrypoint.sh /opt/bin/doccano-keploy-entrypoint.sh
RUN chmod +x /opt/bin/doccano-keploy-entrypoint.sh
USER doccano
ENTRYPOINT ["/opt/bin/doccano-keploy-entrypoint.sh"]