Skip to content

Commit

Permalink
Vercel用のDockerを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
mitsuyoshi-yamazaki committed Dec 29, 2023
1 parent 1cbdb95 commit c8f80f7
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions apps/vercel/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
FROM node:lts-alpine3.18

RUN apk update && apk add git vim curl
RUN apk add --no-cache python3 py3-pip
RUN apk add g++ && apk add make

WORKDIR /var/www/app

RUN yarn install
9 changes: 9 additions & 0 deletions apps/vercel/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
services:
alife_lab:
container_name: alife_lab
build: ./
ports:
- '8012:3000'
volumes:
- ./src:/var/www/app
tty: true
Empty file removed apps/vercel/placeholder
Empty file.

0 comments on commit c8f80f7

Please sign in to comment.