forked from metin2/server
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
418ecc5c24 | |||
6616009e92 | |||
1ada609020 |
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -2,6 +2,7 @@
|
||||
# Set default behavior to automatically normalize line endings.
|
||||
###############################################################################
|
||||
* text=auto
|
||||
*.py eol=lf
|
||||
|
||||
###############################################################################
|
||||
# Set default behavior for command prompt diff.
|
||||
|
@ -1,4 +1,4 @@
|
||||
FROM ubuntu:latest as build
|
||||
FROM ubuntu:22.04 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:latest as app
|
||||
FROM ubuntu:22.04 as app
|
||||
WORKDIR /app
|
||||
|
||||
RUN apt-get update && apt-get install -y python2 libdevil-dev libbsd-dev && apt-get clean
|
||||
|
Reference in New Issue
Block a user