Compare commits
No commits in common. "27108d629ac4fd7acef0cc8b153574118c727d2d" and "175816c81da2ffa00e7e2f730f57e1ae06ce048b" have entirely different histories.
27108d629a
...
175816c81d
|
@ -1,4 +1,4 @@
|
|||
FROM ubuntu:22.04 as build
|
||||
FROM ubuntu:latest as build
|
||||
WORKDIR /app
|
||||
|
||||
# Update the system and install various dependencies
|
||||
|
@ -21,7 +21,7 @@ RUN mkdir build/
|
|||
RUN cd build && cmake -DCMAKE_TOOLCHAIN_FILE=vcpkg/scripts/buildsystems/vcpkg.cmake ..
|
||||
RUN cd build && make -j $(nproc)
|
||||
|
||||
FROM ubuntu:22.04 as app
|
||||
FROM ubuntu:latest as app
|
||||
WORKDIR /app
|
||||
|
||||
RUN apt-get update && apt-get install -y python2 libdevil-dev libbsd-dev && apt-get clean
|
||||
|
|
Loading…
Reference in New Issue