File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 12
12
- name : Build with Docker Compose
13
13
working-directory : ./PiCar-X
14
14
run : |
15
- TAG=arm64v8 docker compose -f docker-compose-core.yml build
15
+ TAG=arm64v8 docker compose -f docker-compose-core.yml build --no-cache
16
+ TAG=arm64v8 docker compose -f docker-compose-dtp.yml build --no-cache
16
17
17
18
# - name: Run pytest in Docker container
18
19
# run: |
25
26
- name : Push to Docker Hub
26
27
working-directory : ./PiCar-X
27
28
run : |
28
- TAG=arm64v8 docker compose -f docker-compose-core .yml push
29
+ TAG=arm64v8 docker compose -f docker-compose-dtp .yml push
Original file line number Diff line number Diff line change 1
1
ARG TAG=latest
2
-
3
- FROM ${TAG :+${TAG}/}ros:noetic as rosnoetic
2
+ ARG ISLATEST=${TAG##latest}
3
+ FROM ${ISLATEST :+${TAG}/}ros:noetic as rosnoetic
4
4
WORKDIR /root/catkin_ws/
5
5
RUN apt update -y \
6
6
&& apt-get install -y python3-pip python3-setuptools python3-catkin-tools wget unzip curl nano \
You can’t perform that action at this time.
0 commit comments