-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Debian version for Dev Containers
- Loading branch information
1 parent
20270c5
commit 2b4e62d
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
FROM debian | ||
|
||
ARG PHP | ||
ENV PHP_VERSION=$PHP | ||
|
||
ARG WITH_EXAKAT | ||
ENV WITH_EXAKAT=$WITH_EXAKAT | ||
|
||
ARG WITHOUT_WATCHR | ||
ENV WITHOUT_WATCHR=$WITHOUT_WATCHR | ||
|
||
COPY rootfs / | ||
|
||
RUN apt update && apt install -y \ | ||
wget php-cli \ | ||
&& /usr/local/bin/install-tools | ||
|
||
ENTRYPOINT [ "/usr/bin/php" ] | ||
CMD [ "-v" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#!/usr/bin/env ash | ||
#!/usr/bin/env sh | ||
|
||
box() { | ||
local version="4.6.1" | ||
|