Skip to content

Commit 2f42e83

Browse files
authored
docker-compose upでテストが立ち上がるようにした (#1422)
1 parent 6f25411 commit 2f42e83

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:16.16.0
1+
FROM node:18.13.0
22

33
WORKDIR /opt
44
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o rustup_install.sh
@@ -11,4 +11,4 @@ WORKDIR /work
1111
RUN npm ci
1212
EXPOSE 3000
1313

14-
CMD ["/bin/sh"]
14+
CMD ["/bin/sh"]

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ services:
2828
ports:
2929
- 3000:3000
3030
volumes:
31-
- .:/work:cache
31+
- .:/work:cached
3232
tty: true
3333
stdin_open: true

0 commit comments

Comments
 (0)