Skip to content

Commit

Permalink
up all, rework IP
Browse files Browse the repository at this point in the history
  • Loading branch information
EliasGit2017 committed Aug 13, 2023
1 parent 514f375 commit 7af2200
Show file tree
Hide file tree
Showing 8 changed files with 82 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
Dockerfile-aes-*
Dockerfile-cvc*
Dockerfile-aeg-*
Dockerfile-aeg-*
alt_ergo_docker_images/_build/*
35 changes: 35 additions & 0 deletions alt_ergo_docker_images/alt_ergo_docker_images.opam
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis:
"generate dockerfiles using `dockerfile` `dockerfile-opam` `dockerfile-cmd` packages"
description: "synopsis explained enough"
maintainer: ["La flemme du lundi matin"]
authors: ["NonaYoBuzniss"]
license: "LICENSE"
tags: ["topics" "Dockerfile" "Alt-Ergo" "your" "project"]
homepage: "https://github.com/EliasGit2017/alt-ergo-docker-images"
doc: "https://url/to/documentation"
bug-reports: "https://github.com/EliasGit2017/alt-ergo-docker-images/issues"
depends: [
"ocaml"
"dune" {>= "3.10"}
"dockerfile"
"dockerfile-cmd"
"dockerfile-opam"
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/EliasGit2017/alt-ergo-docker-images.git"
27 changes: 27 additions & 0 deletions alt_ergo_docker_images/dune-project
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
(lang dune 3.10)

(name alt_ergo_docker_images)

(generate_opam_files true)

(source
(github EliasGit2017/alt-ergo-docker-images))

(authors "NonaYoBuzniss")

(maintainers "La flemme du lundi matin")

(license LICENSE)

(documentation https://url/to/documentation)

(package
(name alt_ergo_docker_images)
(synopsis
"generate dockerfiles using `dockerfile` `dockerfile-opam` `dockerfile-cmd` packages")
(description "synopsis explained enough")
(depends ocaml dune dockerfile dockerfile-cmd dockerfile-opam)
(tags
(topics "Dockerfile" "Alt-Ergo" your project)))

; See the complete stanza docs at https://dune.readthedocs.io/en/stable/dune-files.html#dune-project
2 changes: 2 additions & 0 deletions alt_ergo_docker_images/lib/dune
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
(library
(name alt_ergo_docker_images))
4 changes: 4 additions & 0 deletions alt_ergo_docker_images/src/dune
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
(executable
(public_name alt_ergo_docker_images)
(name main)
(libraries alt_ergo_docker_images dockerfile dockerfile-cmd dockerfile-opam))
10 changes: 10 additions & 0 deletions alt_ergo_docker_images/src/main.ml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
module Df = Dockerfile

let () = print_endline "Hello, World!"

let () =
print_endline "Generating Dockerfiless"




Empty file.
2 changes: 2 additions & 0 deletions alt_ergo_docker_images/test/dune
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
(test
(name alt_ergo_docker_images))

0 comments on commit 7af2200

Please sign in to comment.