Skip to content
This repository was archived by the owner on Apr 13, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion address_resolver/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ ENV PYTHONDONTWRITEBYTECODE 1
ENV HOME /root
ENV DEBIAN_FRONTEND noninteractive
WORKDIR /usr/src/
RUN git clone https://github.com/elastic/spring-petclinic.git
RUN git clone https://github.com/emanuil-tolev/spring-petclinic.git
WORKDIR /usr/src/spring-petclinic/address_resolver/src
RUN pip install gunicorn json-logging-py
RUN pip install setuptools==45
RUN pip install --no-cache-dir -r requirements.txt

EXPOSE 5000
Expand Down
3 changes: 2 additions & 1 deletion docker/address-finder/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ ENV PYTHONDONTWRITEBYTECODE 1
ENV HOME /root
ENV DEBIAN_FRONTEND noninteractive
WORKDIR /usr/src/
RUN git clone https://github.com/elastic/spring-petclinic.git
RUN git clone https://github.com/emanuil-tolev/spring-petclinic.git
WORKDIR /usr/src/spring-petclinic/address_resolver/src
RUN pip install gunicorn json-logging-py
RUN pip install setuptools==45
RUN pip install --no-cache-dir -r requirements.txt

EXPOSE 5000
Expand Down