Skip to content

Commit

Permalink
#15 Prepare for versioned release (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
docktermj authored Jan 18, 2024
1 parent 12f035f commit da21e9d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

-

## [1.0.3] - 2024-01-18

### Added to 1.0.3

- Fix permissions on `/tmp`

## [1.0.2] - 2024-01-17

### Added to 1.0.1
### Added to 1.0.2

- Fix (another) issue with apt update

Expand Down
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,11 @@ USER root

# Install packages via apt-get.

RUN chmod 777 /tmp \
RUN export STAT_TMP=$(stat --format=%a /tmp) \
&& chmod 777 /tmp \
&& apt update \
&& apt -y install wget
&& apt -y install wget \
&& chmod ${STAT_TMP} /tmp

# MySQL support

Expand Down

0 comments on commit da21e9d

Please sign in to comment.