We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e9fde commit b90f780Copy full SHA for b90f780
Dockerfile
@@ -0,0 +1,7 @@
1
+FROM alpine:3.18 AS runner
2
+ LABEL maintainer="Airscript <francesco@airscript.it>"
3
+ WORKDIR /tmp
4
+ COPY . .
5
+ RUN apk add git make neovim && make
6
+ ENTRYPOINT [ "./entrypoint.sh" ]
7
+ CMD [ "nvim" ]
entrypoint.sh
@@ -0,0 +1,3 @@
+#!/bin/sh
+set -e
+exec "$@"
0 commit comments