Spaces:
Sleeping
Sleeping
install with bin bash
Browse files- Dockerfile +2 -2
- pup +1 -1
Dockerfile
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
FROM alpine:latest
|
2 |
|
3 |
-
WORKDIR /code
|
4 |
-
|
5 |
RUN apk add --no-cache bash curl
|
6 |
|
|
|
|
|
7 |
COPY . .
|
8 |
|
9 |
RUN ./pup
|
|
|
1 |
FROM alpine:latest
|
2 |
|
|
|
|
|
3 |
RUN apk add --no-cache bash curl
|
4 |
|
5 |
+
WORKDIR /code
|
6 |
+
|
7 |
COPY . .
|
8 |
|
9 |
RUN ./pup
|
pup
CHANGED
@@ -218,7 +218,7 @@ if [ "$1" == "pixi" ]; then
|
|
218 |
if [ "$2" == "init" ]; then
|
219 |
# install and init Pixi project in pup's home dir
|
220 |
if ! command -v pixi &> /dev/null; then
|
221 |
-
curl -fsSL https://pixi.sh/install.sh | bash
|
222 |
fi
|
223 |
PUPHOME=$(pup home)
|
224 |
if [[ ! -f "$PUPHOME"/pixi.toml ]]; then
|
|
|
218 |
if [ "$2" == "init" ]; then
|
219 |
# install and init Pixi project in pup's home dir
|
220 |
if ! command -v pixi &> /dev/null; then
|
221 |
+
curl -fsSL https://pixi.sh/install.sh | /bin/bash
|
222 |
fi
|
223 |
PUPHOME=$(pup home)
|
224 |
if [[ ! -f "$PUPHOME"/pixi.toml ]]; then
|