Configuring virtual machine (docker) environment

This commit is contained in:
Andrew Golovashevich 2024-10-10 19:05:27 +03:00
commit 2e968232c2
3 changed files with 20 additions and 0 deletions

9
.gitignore vendored Normal file
View File

@ -0,0 +1,9 @@
/.idea/
/*build*/
*.o
*.obj
*.exe
*.dll
*.so
*.lib
*.a

5
docker-compose.yml Normal file
View File

@ -0,0 +1,5 @@
services:
environment:
image: "bgtu/os/environment:l1v0.3"
build:
dockerfile: ./environment.dockerfile

6
environment.dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM alpine:3.20.3
RUN apk update && apk upgrade
RUN apk add clang cmake linux-headers
RUN apk add lldb
RUN apk add make
RUN apk add gdb