Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Egonz/auto 457 1.8 #1048

Merged
merged 9 commits into from
Feb 5, 2021
Prev Previous commit
Next Next commit
Update apt to apt-get and POSIX & changed to tester fleet
  • Loading branch information
cocho-gore committed Feb 5, 2021
commit e718159d85194397f91af6a2b2be598722aaa1d7
2 changes: 1 addition & 1 deletion .cicd/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -440,7 +440,7 @@ steps:
- label: ":docker::ubuntu: Docker - Build 18.04 Docker Image"
command: "./.cicd/create-docker-from-binary.sh"
agents:
queue: "automation-eks-eos-builder-fleet"
queue: "automation-eks-eos-tester-fleet"
timeout: 10

- label: ":git: Git Submodule Regression Check"
Expand Down
7 changes: 4 additions & 3 deletions docker/dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ FROM ubuntu:18.04

COPY *.deb /

RUN apt update && \
apt install -y /*.deb && \
rm -rf /*.deb /var/lib/apt/lists/*
RUN apt-get update && \
apt-get install -y /*.deb && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*