2 Commits

Author SHA1 Message Date
d26cc87713 wip: using different versions of rust images 2023-12-02 09:11:12 +11:00
212ae4847a wip: rearrange docker directory 2023-12-02 09:09:02 +11:00
17 changed files with 44 additions and 2 deletions

View File

@@ -1,8 +1,8 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/debian
{
"name": "Alpine Dev",
"image": "alpine-dev:user",
"name": "Ubuntu Dev",
"image": "ubuntu-dev:user",
"customizations": {
"vscode": {
"extensions": [

13
docker/alpine/Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM rust:alpine as builder
FROM alpine
COPY --from=builder target/debug/init /usr/local/bin/init
ADD docker/etc/ /etc/
RUN chmod ugo+x /etc/wingmate/services/one && chmod ugo+x /etc/wingmate/services/two.sh && \
chmod ugo-x /etc/wingmate/services/three.sh
CMD [ "/usr/local/bin/init" ]

View File

@@ -0,0 +1,3 @@
17 * * * * sleep 1
*/12 * * * * sleep 1
12,17,27 * * * * sleep 1

View File

@@ -0,0 +1 @@
you cannot run this file

View File

@@ -0,0 +1,3 @@
#!/bin/bash
exec sleep 1

View File

@@ -0,0 +1,3 @@
#!/bin/bash
exec sleep 1

9
docker/dev/Dockerfile Normal file
View File

@@ -0,0 +1,9 @@
FROM ubuntu:22.04
ADD target/debug/init /usr/local/bin/init
ADD docker/etc/ /etc/
RUN chmod ugo+x /etc/wingmate/services/one && chmod ugo+x /etc/wingmate/services/two.sh && \
chmod ugo-x /etc/wingmate/services/three.sh
CMD [ "/usr/local/bin/init" ]

View File

@@ -0,0 +1,3 @@
17 * * * * sleep 1
*/12 * * * * sleep 1
12,17,27 * * * * sleep 1

View File

@@ -0,0 +1 @@
you cannot run this file

View File

@@ -0,0 +1,3 @@
#!/bin/bash
exec sleep 1

View File

@@ -0,0 +1,3 @@
#!/bin/bash
exec sleep 1