Skip to content

Commit 311f40e

Browse files
committed
fix docker format to make git happy
1 parent 2192b40 commit 311f40e

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ RUN python -m venv /venv
1313
ENV PATH=/venv/bin:$PATH
1414

1515
# The build stage installs the context into the venv
16-
FROM developer as build
16+
FROM developer AS build
1717
COPY . /context
1818
WORKDIR /context
1919
RUN pip install .[server]
2020

2121
# The runtime stage copies the built venv into a slim runtime container
22-
FROM python:${PYTHON_VERSION}-slim as runtime
22+
FROM python:${PYTHON_VERSION}-slim AS runtime
2323
RUN apt-get update && apt-get install -y --no-install-recommends \
2424
curl \
2525
procps \

deployment/build_and_push.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,6 @@ PUSH=1
55
RUN_CONTAINER=0
66
REBUILD_CONTAINER=0
77

8-
9-
108
cd -- "$( dirname -- "$BASH_SOURCE[0]" )"
119
cd ..
1210
# make dockerignore from .gitignore

0 commit comments

Comments
 (0)