Commit 991a2a0c authored by Lluis Gifre Renom's avatar Lluis Gifre Renom
Browse files

Code cleanup

parent 77d5ce5f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM localhost:5000/python:3.9-slim
FROM python:3.9-slim

# Install dependencies
RUN apt-get --yes --quiet --quiet update && \
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM localhost:5000/python:3.9-slim
FROM python:3.9-slim

# Install dependencies
RUN apt-get --yes --quiet --quiet update && \
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM localhost:5000/python:3.9-slim
FROM python:3.9-slim

# Install dependencies
RUN apt-get --yes --quiet --quiet update && \
+2 −2
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@
# Multi-stage Docker image build

# Stage 1
FROM localhost:5000/ubuntu:20.04 AS builder
FROM ubuntu:20.04 AS builder
ARG DEBIAN_FRONTEND=noninteractive

# Install build software
@@ -53,7 +53,7 @@ ENTRYPOINT [ "./pathComp-cvr", "config/pathcomp.conf", "screen_only" ]


# Stage 2
FROM localhost:5000/ubuntu:20.04 AS release
FROM ubuntu:20.04 AS release
ARG DEBIAN_FRONTEND=noninteractive

# Install build software
+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM localhost:5000/python:3.9-slim
FROM python:3.9-slim

# Install dependencies
RUN apt-get --yes --quiet --quiet update && \
Loading