Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
Merge pull request #10 from sanger-pathogens/RT673529_locale_issue
Browse files Browse the repository at this point in the history
RT673529 locale issue
  • Loading branch information
kpepper authored Oct 21, 2019
2 parents 02e8c96 + 6435536 commit c3c51ca
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 deletions.
27 changes: 25 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,38 @@
# Change Log

## [Unreleased](https://github.com/sanger-pathogens/gffmunger/tree/HEAD)
## [v0.1.3](https://github.com/sanger-pathogens/gffmunger/tree/v0.1.3) (2019-10-21)
[Full Changelog](https://github.com/sanger-pathogens/gffmunger/compare/v0.1.2...v0.1.3)

[Full Changelog](https://github.com/sanger-pathogens/gffmunger/compare/v0.0.1...HEAD)
- RT673529 - added missing locales to Docker file

## [v0.1.2](https://github.com/sanger-pathogens/gffmunger/tree/v0.1.2) (2019-07-10)
[Full Changelog](https://github.com/sanger-pathogens/gffmunger/compare/v0.1.1...v0.1.2)

**Merged pull requests:**

- Tweak config for farm4 [\#9](https://github.com/sanger-pathogens/gffmunger/pull/9) ([trstickland](https://github.com/trstickland))

## [v0.1.1](https://github.com/sanger-pathogens/gffmunger/tree/v0.1.1) (2019-07-09)
[Full Changelog](https://github.com/sanger-pathogens/gffmunger/compare/v0.1...v0.1.1)

**Merged pull requests:**

- hotfix for config file environment variable [\#8](https://github.com/sanger-pathogens/gffmunger/pull/8) ([trstickland](https://github.com/trstickland))
- Sensible default and an ENV variable to set configuration file path [\#7](https://github.com/sanger-pathogens/gffmunger/pull/7) ([trstickland](https://github.com/trstickland))

## [v0.1](https://github.com/sanger-pathogens/gffmunger/tree/v0.1) (2019-07-08)
[Full Changelog](https://github.com/sanger-pathogens/gffmunger/compare/v0.0.1...v0.1)

**Merged pull requests:**

- Dockerfile and addition of optional commands [\#6](https://github.com/sanger-pathogens/gffmunger/pull/6) ([trstickland](https://github.com/trstickland))
- Added changelog [\#5](https://github.com/sanger-pathogens/gffmunger/pull/5) ([ssjunnebo](https://github.com/ssjunnebo))
- update readme [\#4](https://github.com/sanger-pathogens/gffmunger/pull/4) ([ssjunnebo](https://github.com/ssjunnebo))
- documentation tweak [\#3](https://github.com/sanger-pathogens/gffmunger/pull/3) ([trstickland](https://github.com/trstickland))
- genometools path [\#2](https://github.com/sanger-pathogens/gffmunger/pull/2) ([trstickland](https://github.com/trstickland))
- changed repo url to sanger-pathogens' [\#1](https://github.com/sanger-pathogens/gffmunger/pull/1) ([trstickland](https://github.com/trstickland))

## [v0.0.1](https://github.com/sanger-pathogens/gffmunger/tree/v0.0.1) (2018-08-14)


\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
7 changes: 6 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,12 @@ ENV BUILD_DIR /gffmunger-build
ENV CONF_DIR /etc/gffmunger

RUN apt-get update -qq
RUN apt-get install -y genometools git python3 python-setuptools python3-biopython python3-pip
RUN apt-get install -y locales genometools git python3 python-setuptools python3-biopython python3-pip

# Configure locales.
# Select a specific locale by passing the LANG variable into docker run.
RUN cp /usr/share/i18n/SUPPORTED /etc/locale.gen
RUN locale-gen

# RUN pip3 install dumper gffutils pyyaml

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.1
0.1.3

0 comments on commit c3c51ca

Please sign in to comment.