We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ac1d248 + dd4c529 commit 67f9253Copy full SHA for 67f9253
.dockerignore
@@ -2,6 +2,7 @@
2
!src*
3
!pyproject.toml
4
!Makefile
5
+!VERSION
6
!LICENSE
7
!README.md
8
!.git
Dockerfile
@@ -12,12 +12,13 @@ WORKDIR /build-ocrd
12
13
COPY src ./src
14
COPY pyproject.toml .
15
+COPY VERSION ./VERSION
16
+RUN mv ./src/ocrd_utils/ocrd_logging.conf /etc
17
COPY Makefile .
18
COPY README.md .
19
COPY LICENSE .
20
COPY .git ./.git
21
-RUN mv ./src/ocrd_utils/ocrd_logging.conf /etc
22
RUN echo 'APT::Install-Recommends "0"; APT::Install-Suggests "0";' >/etc/apt/apt.conf.d/ocr-d.conf
23
RUN apt-get update && apt-get -y install software-properties-common \
24
&& apt-get update && apt-get -y install \
0 commit comments