Configuring virtual machine (docker) environment
This commit is contained in:
commit
2e968232c2
9
.gitignore
vendored
Normal file
9
.gitignore
vendored
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
/.idea/
|
||||||
|
/*build*/
|
||||||
|
*.o
|
||||||
|
*.obj
|
||||||
|
*.exe
|
||||||
|
*.dll
|
||||||
|
*.so
|
||||||
|
*.lib
|
||||||
|
*.a
|
5
docker-compose.yml
Normal file
5
docker-compose.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
services:
|
||||||
|
environment:
|
||||||
|
image: "bgtu/os/environment:l1v0.3"
|
||||||
|
build:
|
||||||
|
dockerfile: ./environment.dockerfile
|
6
environment.dockerfile
Normal file
6
environment.dockerfile
Normal 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
|
Loading…
Reference in New Issue
Block a user