Skip to content

Commit 7f94598

Browse files
committed
Small bash history hack
1 parent d6aaec5 commit 7f94598

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

batch-processing/.bash_history

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
go run . --input inputs/example.csv

batch-processing/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ ENTRYPOINT [ "go", "test", "-v" ]
5757
##
5858
FROM base as develop
5959

60+
COPY .bash_history /root/.bash_history
6061
ENTRYPOINT [ "/bin/bash" ]
6162

6263
##

batch-processing/Makefile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,8 @@ test:
55
docker run --rm test
66

77
develop:
8-
mkdir -p mount
98
docker build --target develop -t develop .
109
docker run -it --mount type=bind,source="$$(pwd)",target=/app --mount type=bind,source="/tmp",target=/tmp --rm develop
11-
rm -rf ./mount
1210

1311
run:
1412
docker build --target run -t run .

0 commit comments

Comments
 (0)