일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- Eclipse
- rocky9
- mysql
- SpringBoot
- ajax
- jenkins
- PM2
- config
- nodejs
- centos7
- FCM
- javascript
- yona
- submit
- MariaDB
- jquery
- docker
- popup
- mybatis
- security
- node.js
- Next.js
- Maven
- Java
- Push
- pwa
- NextJS
- git
- spring3
- MSsql
- Today
- Total
목록dockerfile (2)
ふたりで
# 준비사항.- docker(desktop)- spring-web 프로젝트 (maven으로 빌드 생성된 war파일) # 먼저 Dockerfile을 생성해 준다.나의 경우 아래와 같이 작성되어 있다.C:\docker-workjob\spring3-web-test\Dockerfile# 기본 이미지로 Rocky Linux 9 사용FROM rockylinux:9# 필수 패키지 업데이트 및 설치RUN dnf -y update && \ dnf -y install java-1.8.0-openjdk wget tar# 로케일 설정 한국어ENV LANG=ko_KR.UTF-8ENV LANGUAGE=ko_KR:koENV LC_ALL=ko_KR.UTF-8# 한국 시간으로 설정RUN ln -sf /usr/share/zonei..
windows 11 + docker desktop에서 단순한 node.js 환경의 프로젝트를 dockerfile로 작성 후 build 해보기. # dockerfile을 작성할 프로젝트 구조.## 프로젝트의 root경로의 파일명 Dockerfile 인 파일의 내용.# Start your image with a node base imageFROM node:18-alpine# The /app directory should act as the main application directoryWORKDIR /app# Copy the app package and package-lock.json fileCOPY package*.json ./# Copy local directories to the current lo..