Skip to content

Commit 89c60ad

Browse files
committed
add .gitattributes
1 parent 551da9e commit 89c60ad

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

.gitattributes

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/.github export-ignore
2+
/tests export-ignore
3+
/.gitattributes export-ignore
4+
/.gitignore export-ignore
5+
/.php-cs-fixer.dist.php export-ignore
6+
/docker-compose.yml export-ignore
7+
/Dockerfile export-ignore
8+
/SECURITY.md export-ignore
9+
10+
*.php text diff=php
11+
*.md text
12+
LICENSE text

Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ LABEL org.opencontainers.image.description="php-chmod is a PHP library for easil
99
WORKDIR /app
1010
COPY . .
1111

12-
RUN apt-get update && apt-get -y upgrade \
12+
RUN apt-get update \
13+
&& apt-get -y upgrade \
1314
&& apt-get -y install zip \
1415
&& composer update

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version: "3"
33
services:
44
app:
55
build: .
6-
image: php-chmod:2.1
6+
image: php-chmod:2.1.2
77
container_name: "php-chmod"
88
volumes:
99
- ./:/app

0 commit comments

Comments
 (0)